home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / WAIS / next-ui / AssocTableCell.h < prev    next >
Encoding:
Text File  |  1992-02-03  |  680 b   |  29 lines

  1. // AssocTableCell.h
  2. //
  3. // Free software created 1 Feb 1992
  4. // by Paul Burchard <burchard@math.utah.edu>.
  5.  
  6. #import <appkit/TextFieldCell.h>
  7.  
  8. @interface AssocTableCell : TextFieldCell
  9. {
  10.     id assocField;
  11.     float assocSize;
  12.     float assocGray;
  13. }
  14.  
  15. - initTextCell:(const char *)aString;
  16. - free;
  17. - setBackgroundColor:(NXColor)Colorvalue;
  18. - setBackgroundGray:(float)value;
  19. - setBackgroundTransparent:(BOOL)flag;
  20. - setTextAttributes:textObj;
  21. - drawInside:(const NXRect *)cellFrame inView:controlView;
  22. - setAssocStringValue:(const char *)aValue;
  23. - (const char *)assocStringValue;
  24. - setAssocSize:(float)aValue;
  25. - (float)assocSize;
  26. - setAssocGray:(float)aValue;
  27. - (float)assocGray;
  28.  
  29. @end